Values Property

Task Parallel System.Threading

Gets a collection containing the values in the Dictionary<(Of <(TKey, TValue>)>).

Namespace:  System.Collections.Concurrent
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Public ReadOnly Property Values As ICollection(Of TValue)
C#
public ICollection<TValue> Values { get; }

Field Value

An ICollection<(Of <(TValue>)>) containing the values in the Dictionary<(Of <(TKey, TValue>)>).

Implements

IDictionary<(Of <(TKey, TValue>)>)..::.Values

See Also